找传奇、传世资源到传世资源站!

C# 单机网络监听 实例源码

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

可实现本机TCP or udp网络监听
C# 单机网络监听 实例源码 C#语言基础-第1张
C# 单机网络监听 实例源码 C#语言基础-第2张   private void btnStart_Click(object sender, EventArgs e) { //开始抓取数据包 if (btnStart.Text == "开始抓取") { //循环抓取每个网卡的数据包 for (int i = 0; i < packetMonitor.Length; i ) { if (cmbIpList.SelectedIndex == 0) { try { //第i个开始抓取 packetMonitor[i].begainMonitor(); } catch { MessageBox.Show("内部错误,请联系管理员"); } } else { try { //抓取指定的Ip packetMonitor[cmbIpList.SelectedIndex - 1].begainMonitor(); } catch { MessageBox.Show("内部错误,请联系管理员"); } } btnStart.Text = "停止抓取"; toolStripStatusLabel1.Text = "开始监测所有端口"; } } //停止抓取 else { for (int i = 0; i < packetMonitor.Length; i ) { packetMonitor[i].Stop(); } btnStart.Text = "开始抓取"; toolStripStatusLabel1.Text = "停止监测"; } }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复